home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SuperHack
/
SuperHack CD.bin
/
CODING
/
GRAPHICS
/
UVE138.ZIP
/
EXAMPLES.ZIP
/
1ST.PAS
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1996-08-30
|
244 b
|
16 lines
{$A+,B-,D+,E+,F-,G+,I+,L+,N-,O-,P-,Q-,R-,S+,T-,V+,X+}
{$M 16384,0,655360}
{
1ST.PAS
Sample init program into/out of graphics mode.
}
uses crt,uve32;
begin
ia_inituve;
ia_powerup;
repeat until keypressed;
ia_shutdown;
end.